home *** CD-ROM | disk | FTP | other *** search
- global vHFlag, vVoid
-
- on startMovie
- movieInits(1)
- set the exitLock to 1
- cursor(0)
- end
-
- on stopMovie
- movieInits(0)
- set vHFlag to vVoid
- end
-
- on movieInits onOrOff
- if onOrOff then
- setPuppets(1, [6])
- set the cursor of sprite 6 to [10, 11]
- cursor(0)
- else
- setPuppets(0, [6])
- set the cursor of sprite 6 to 0
- cursor(0)
- end if
- end
-